home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-11-11 | 613 b | 30 lines | [TEXT/ToyS] |
-
- property idletime : 10 * 60 -- number of seconds between runs
- property opentime : 2 * 60 -- seconds to await link open
- property mailtime : 5 * 60 -- seconds for mail check
-
- on idle
- try
- tell application "PPPop 1.5d4"
- connect
- with timeout of opentime seconds
- repeat until (PPP up)
- end repeat
- end timeout -- will go to error if not open
- end tell
-
- with timeout of mailtime seconds
- tell application "Eudora Pro 3.0" to connect with sending and checking
- activate
- end timeout
-
- tell application "PPPop 1.5d4" to disconnect
-
- on error
- beep
- end try
-
- return idletime
-
- end idle
-